* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    color: #0FFCBE;
    overflow-x: hidden;
    max-width: 100%;
}

/* Container Styling */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
}

/* Jesus Logo Styling */
.jesus-logo img {
    width: 25px; /* Adjust size */
    height: auto;
    margin-bottom: 10px;
    overflow: hidden;
    display: block;
    max-width: 100%;
}

/* Top Bar & Menu */
.top-bar-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    padding: 15px 20px;
    width: 100%;
    color: #0FFCBE;
}

/* Logo and Search Box */
.logo-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap; /* Ensures items wrap on small screens */
    padding: 10px;
    text-align: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo horizontally */
    font-size: 1.4rem;
    font-weight: bold;
    width: 100%; /* Ensures full width */
    text-align: center;
    margin: 10px 0;
    margin-top: -40px;
}

/* Centering the Logo Image */
.logo img {
   max-width: 70px;
    height: auto;
    margin-right: 0;
    width: 20vw;
}

/* Search Box */
.search-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    padding: 5px;
    border-radius: 15px;
    width: 90%;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

/* Search Input */
.search-box input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    border-radius: 10px;
    
}

/* Search Results (inside the box) */
#searchResults {
    width: 100%;
    list-style: none;
    padding: 0;
    margin-top: 5px;
    max-height: 150px;
    overflow-y: auto;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    border-radius: 10px;
    display: none; /* Hidden initially */
}

/* Search Result Items */
#searchResults li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

#searchResults li:hover {
    background: #106EBE;
}

/* Floating Social Media Icons */
.floating-social-icons {
    position: fixed;
    top: 40%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-social-icons .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.floating-social-icons .social-icon:hover {
    transform: scale(1.2);
}

/* Different Colors on Hover */
.instagram:hover { background: #0FFCBE; }
.whatsapp:hover { background: #0FFCBE;}
.facebook:hover { background: #0FFCBE;}
.call:hover { background: #0FFCBE; }

/* Top Navigation Bar */
.top-bar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:linear-gradient(90deg, #106EBE, #0FFCBE);
    padding: 15px 20px;
    width: 100%;
    color: #0FFCBE;
}

/* Navigation Menu (Always Visible) */
.nav-menu {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu ul li {
    margin: 10px;
}

/* Menu Links */
.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect - Fade and Slide */
.nav-menu a:hover {
    color: #0FFCBE;
    transform: translateY(-3px);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Glow Animation */
.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 4px;
    background: #0FFCBE;
    box-shadow: 0 0 10px #0FFCBE;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.nav-menu a:hover::before {
    width: 100%;
    left: 0;
}

    
.product-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    gap: 20px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    
    /* 3D Animation */
    animation: flipIn 2s ease-in-out;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
}

.product-container:nth-child(4n + 2) {
    animation: flipIn 1.2s ease-in-out;
}

.product-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}


/* Left side - Product Image */
.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 300px; /* Ensure equal height */
}

.product-image img {
    width: 100%;
    max-width: 250px;
    object-fit: contain;
}

/* Right side - Product Details */
.product-details {
    flex: 1;
    padding: 20px;
    text-align: left; /* Ensure text aligns left */
}

.product-details h2 {
    font-size: 24px;
    color: #07393C;
}


.rating {
    color: #ffcc00;
    font-size: 18px;
}

.review {
    font-size: 14px;
    color: #106EBE;
}

.description {
    margin: 15px 0;
    font-size: 14px;
    color: black;
}

/* .color-options {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.color-options label {
    margin-right: 10px;
    font-size: 16px;
    color: black;
}

.color-options input {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    margin-right: 10px;
    appearance: none;
}

.color-options input:checked {
    border: 2px solid black;
} */
@keyframes flipIn {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0);
        opacity: 1;
    }
}

.brand-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
}

.brand-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.brand {
    display: inline-block;
    margin: 0 20px;
}

.brand img {
    max-width: 100px;
    height: auto;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-70%); }
}
#footer {
    background: linear-gradient(90deg, #106EBE, #0FFCBE);
    color: #fff;
    /* padding: 40px 0; */
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h2 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-section .social-icons img {
    width: 30px;
    margin: 5px;
}

.footer-section input {
    width: 80%;
    padding: 8px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
.footer-section a {
    text-decoration: none;
    color: #fff;
}
.footer-section button {
    background: #f4a261;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 768px) {
    
    .product-container {
        flex-direction: row;
        text-align: center;
        padding: 15px;
    }
    
    .product-image, .product-details {
        width: 100%;
    }

    .product-image img {
        max-width: 200px; /* Smaller size for mobile */
    }
    .product-details p{
        font-size: 15px;
    }
    .brand img {
        max-width: 80px;
    }
    .footer-container {
        flex-direction: row;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand img {
        max-width: 60px;
    }
}



